home *** CD-ROM | disk | FTP | other *** search
/ TOS Silver 2000 / TOS Silver 2000.iso / programm / AGNUS / MACROS.TXT < prev    next >
Encoding:
Text File  |  1998-04-30  |  6.1 KB  |  271 lines

  1. # Editor-Text-Makros für AGNUS ab v0.95
  2. # letzte Änderung: 30.04.1998, VH
  3. #
  4. # Inhalt: Makros für  - C, C++, Object C
  5. #                     - Pascal
  6. #                     - Fortran
  7. #                     - ST-Guide
  8. #                     - HTML
  9. #
  10. #
  11. # Das Format ist mit Absicht an QED angelehnt, jedoch etwas flexibler:
  12. #
  13. # Syntax: # Kommentar
  14. #         $<ext1> <ext2> ... Beginn einer Liste mit makros
  15. #           <ext>: gültige Extensionen, * für alle (nur am Ende sinnvoll!)
  16. #         ~<Zeichen1><Zeichen2> ... in Makros gültige Sonderzeichen
  17. #         <Kürzel>=<Wert>
  18. #           In <Wert> wird mit
  19. #             oder ~ der Curser neu positioniert.
  20. #            ^^ ein neue linksbündige Zeile begonnen.
  21. #            ^! eine neue eingerückte Zeile begonnen.
  22. #            ^> eine neue eingerückte Zeile begonnen und einen Tab nach rechts gerückt.
  23. #            ^< eine neue eingerückte Zeile begonnen und einen Tab nach links gerückt.
  24. #
  25. #**************************************************************************
  26. #************************  Textmakros für C  ******************************
  27. #*************  teilweise auch für C++, Object C, Java  *******************
  28. #**************************************************************************
  29. $C CC CPP M I H JAVA JAV J
  30. ~{}
  31. ()    ={^>~^<}
  32. {}    ={^>~^<}
  33. b    =boolean
  34. br    =break;
  35. by    =byte
  36. c    =char
  37. ca    =case ~ :
  38. cb    =const byte
  39. cl    =class ~^!{^! private:^!protected:^!public:^<};
  40. co    =const
  41. d    =double
  42. de    =default:
  43. def    =#define 
  44. e    =else
  45. el    =else if (~)
  46. ex    =extern
  47. f    =FALSE
  48. fi    =FILE* 
  49. fl    =float
  50. fo    =for (~=;;)
  51. fpr    =fprintf(~,"\n",);
  52. fsc    =fscanf(~,"",);
  53. fu    =~()^!{^>^<}
  54. g    =GLOBAL
  55. i    =if (~)
  56. in    =#include <~.h>
  57. i<    =#include <~.h>
  58. i>    =#include <~.h>
  59. inc    =#include "~.h"
  60. i"    =#include "~.h"
  61. l    =long
  62. ll    =long long 
  63. loc    =local
  64. m    =int main(int argc,char *argv[],char *envp[])^!{^>~^!return 0;^<}
  65. n    =NULL
  66. p    =printf("~");
  67. pri    =printf("~");
  68. pr    =void ~()^!{^>^<}
  69. r    =return ~;
  70. s    =short 
  71. sc    =scanf("~",);
  72. si    =sizeof(~)
  73. sin    =signed 
  74. st    =struct ~^!{^>^<};
  75. sw    =switch (~) {^>case :^<}
  76. t    =TRUE
  77. ty    =typedef 
  78. tys    =typedef struct ~^!{^>^<};
  79. ub    =unsigned byte 
  80. ui    =unsigned int 
  81. ul    =unsigned long 
  82. ull    =unsigned long long 
  83. un    =unsigned 
  84. us    =unsigned short 
  85. uw    =unsigned word 
  86. wh    =while (~)
  87. w    =word 
  88. v    =void 
  89. #
  90. #
  91. #**************************************************************************
  92. #***********************  Textmakros für Pascal  **************************
  93. #**************************************************************************
  94. $PAS P
  95. a    =ALPHA
  96. b    =begin
  97. bo    =BOOLEAN
  98. by    =BYTE
  99. c    =CHAR
  100. cs    =case ~ of
  101. df    =otherwise:
  102. e    =end;
  103. ei    =else if (~)
  104. ee    =end else
  105. eeb    =end else begin
  106. el    =else
  107. f    =false
  108. fi    =FILE OF 
  109. fit    =TEXT
  110. fu    =function ~():;
  111. i    =if (~)
  112. it    =INTEGER
  113. l    =LONG_INTEGER
  114. m    =maxint
  115. pr    =procedure ~();
  116. r    =read(~);
  117. re    =REAL
  118. rl    =readln(~);
  119. s    =STRING
  120. s255    =STRING[255]
  121. so    =sizeof (~)
  122. t    =true
  123. w    =write(~);
  124. wl    =writeln(~);
  125. #
  126. #
  127. #**************************************************************************
  128. #***********************  Textmakros für Fortran  *************************
  129. #**************************************************************************
  130. $F FOR
  131. ~<>=
  132. <    =.lt. 
  133. <=    =.le. 
  134. =    =.eq. 
  135. <>    =.ne. 
  136. ><    =.ne. 
  137. !=    =.ne. 
  138. >=    =.ge. 
  139. >    =.gt. 
  140. a    =.and. 
  141. c    =complex 
  142. ch    =character 
  143. ch2    =character*20 
  144. ch4    =character*40 
  145. ch8    =character*80 
  146. chb    =character*255 
  147. cm    =common 
  148. co    =continue
  149. d    =double precision 
  150. df    =double precision function ~()
  151. di    =dimension ~()
  152. do    =do ~=,,
  153. e    =equivalence (~)
  154. f    =.false.
  155. fo    =format(~)
  156. fu    =~function ()
  157. g    =goto ~
  158. i    =if (~)
  159. if    =integer function ~()
  160. ii    =if (~) ,,
  161. it    =integer 
  162. i1    =integer*1 
  163. i2    =integer*2 
  164. i3    =integer*4 
  165. l    =logical 
  166. lf    =logigal function ~()
  167. m    =subroutine main()
  168. n    =.not. 
  169. o    =.or. 
  170. p    =program main
  171. pr    =subroutine ~()
  172. r    =read(0,~)
  173. re    =real 
  174. rf    =real function ~()
  175. rt    =return
  176. s    =subroutine ~()
  177. t    =.true.
  178. w    =write(0,~)
  179. #
  180. #
  181. #**************************************************************************
  182. #***************  Textmakros für ST-Guide-Hypertexte  *********************
  183. #**************************************************************************
  184. $STG
  185. 1    =@database "~"
  186. 2    =@author "~"
  187. 3    =@subject "~"
  188. 4    =@$VER: 
  189. af    =@autorefoff
  190. an    =@autorefon
  191. ai    =@{I}~@{i}
  192. ab    =@{B}~@{b}
  193. al    =@alabel "~"
  194. au    =@{U}~@{u}
  195. e    =@endnode
  196. en    =@endnode
  197. h    =@help "~"
  198. i    =@index "~"
  199. img    =@image ~ 0
  200. l    =@line 1 73 0 0 7
  201. la    =@label "~"
  202. li    =@{"~" link ""}
  203. n    =@node "~"
  204. ne    =@next "~"
  205. p    =@pnode "~"
  206. pr    =@prev "~"
  207. pn    =@pnode "~"
  208. t    =@tabsize 
  209. w    =@width 
  210. x    =@xref "~"
  211. #
  212. #
  213. #**************************************************************************
  214. #***************  Textmakros für WWW-Hypertexte (HTML)  *******************
  215. #**************************************************************************
  216. $HTML HTM
  217. # Rumpf einer HTML-Datei
  218. HTML    =<HTML><HEAD>^^    <TITLE>~</TITLE>^^</HEAD><BODY>^^    ^^</BODY>^^</HTML>
  219. # Text-Lyout
  220. ADDRESS    =<ADDRESS>~</ADDRESS>
  221. AL    =ALIGN=LEFT
  222. AR    =ALIGN=RIGHT
  223. AC    =ALIGN=CENTER
  224. AT    =VALIGN=TOP
  225. AM    =VALIGN=MIDDLE
  226. AB    =VALIGN=BOTTOM
  227. QUOTE    =<BLOCKQUOTE>~</BLOCKQUOTE>
  228. CENTER    =<CENTER>~</CENTER>
  229. H1    =<H1>~</H1>
  230. H2    =<H2>~</H2>
  231. H3    =<H3>~</H3>
  232. H4    =<H4>~</H4>
  233. H5    =<H5>~</H5>
  234. H6    =<H6>~</H6>
  235. NOBR    =<NOBR>~</NOBR>
  236. # Text-Attribute
  237. P    =<P ALIGN="~"></P>
  238. B    =<B>~</B>
  239. BIG    =<BIG>~</BIG>
  240. CITE    =<CITE>~</CITE>
  241. CODE    =<CODE>~</CODE>
  242. DFN    =<DFN>~</DFN>
  243. EM    =<EM>~</EM>
  244. I    =<I>~</I>
  245. KBD    =<KBD>~</KBD>
  246. PRE    =<PRE>~</PRE>
  247. SAMP    =<SAMP>~</SAMP>
  248. SMALL    =<SMALL>~</SMALL>
  249. STRONG    =<STRONG>~</STRONG>
  250. SUB    =<SUB>~</SUB>
  251. SUP    =<SUP>~</SUP>
  252. TT    =<TT>~</TT>
  253. VAR    =<VAR>~</VAR>
  254. # Aufzählungen, Listen
  255. DIR    =<DIR>^^<LI>~^^<LI>^^</DIR>
  256. MENU    =<MENU>^^<LI>~^^<LI>^^</MENU>
  257. OL    =<OL>^^<LI>~^^<LI>^^</OL>
  258. UL    =<UL>^^<LI>~^^<LI>^^</UL>
  259. DL    =<DL>^^<DT>~^^<DD>^^<DT>^^<DD>^^</DL>
  260. # Tabellen
  261. TABLE    =<TABLE BORDER=1>^><CAPTION>~</CAPTION>^!<TR><TD></TD><TD></TD></TR>^<</TABLE>
  262. TABLE22    =<TABLE BORDER=1>^><CAPTION>~</CAPTION>^!<TR><TD></TD><TD></TD></TR>^!<TR><TD></TD><TD></TD></TR>^<</TABLE>
  263. TR    =<TR>~</TR>
  264. TD    =<TD>~</TD>
  265. TH    =<TH>~</TH>
  266. # sonstige
  267. A    =<A HREF="~"></A>
  268. AN    =<A NAME="~"></A>
  269. IMG    =<IMG SRC="~" ALT="" ALIGN= BORDER=0>
  270. MAP    =<MAP>^><AREA SHAPE="rect" COORDS=",,," HREF="">^<</MAP>
  271.